home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 October: Technology Seed / ADC Seed CD - October 1999.toast / FireWire / FireWire_2.1_SDK_DR3 / Source / SBP2 / SampleSBP2Family / SampleSBP2Expert.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-17  |  1.0 KB  |  66 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SampleSBP2Expert.h
  3.  
  4.     Contains:    Declarations for sample SBP-2 expert
  5.  
  6.     Version:    1.0
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Eric Anderson
  13.  
  14.         Other Contact:        
  15.  
  16.         Technology:            FireWire
  17.  
  18.     Writers:
  19.  
  20.         (EA)    Eric Anderson (ewa)
  21.  
  22.     Change History (most recent first):
  23.  
  24.        <FW2>     9/20/98    EA        Filled in header comments.
  25.        <FW1>     9/20/98    EA        first checked in
  26. */
  27.  
  28.  
  29. #ifndef __SampleSBP2EXPERT__
  30. #define __SampleSBP2EXPERT__
  31.  
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35.  
  36. #if PRAGMA_IMPORT_SUPPORTED
  37. #pragma import on
  38. #endif
  39.  
  40. #if PRAGMA_ALIGN_SUPPORTED
  41. #pragma options align=mac68k
  42. #endif
  43.  
  44. struct SBPExpertDataStruct
  45. {
  46.     GDFDeviceEventRegistrationID
  47.                                 gdfDeviceEventRegistrationID;    // Reference to generic device event registration.
  48. };
  49. typedef struct SBPExpertDataStruct
  50.                                 SBPExpertData,
  51.                                 *SBPExpertDataPtr;
  52.  
  53. #if PRAGMA_ALIGN_SUPPORTED
  54. #pragma options align=reset
  55. #endif
  56.  
  57. #if PRAGMA_IMPORT_SUPPORTED
  58. #pragma import off
  59. #endif
  60.  
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64.  
  65. #endif /* __SampleSBP2EXPERT__ */
  66.